BEGIN METHOD One
	ID 1
	BLOCK DEPENDENCIES
	0 RECORDS
	ENDBLOCK DEPENDENCIES
	BLOCK PARAMETERS
	1 RECORDS
		a = LIST 1 2 3 4 (default) 5 
	ENDBLOCK PARAMETERS
	BLOCK SCRIPTS
	1 RECORDS
		SCRIPT run3DRISM

			echo $A > one.txt

		ENDSCRIPT run3DRISM
	ENDBLOCK SCRIPTS
END METHOD One
BEGIN METHOD Two
	ID 2
	BLOCK DEPENDENCIES
	0 RECORDS
	ENDBLOCK DEPENDENCIES
	BLOCK PARAMETERS
	1 RECORDS
		b = LIST hello world (default) 
	ENDBLOCK PARAMETERS
	BLOCK SCRIPTS
	1 RECORDS
		SCRIPT two
	
			echo $B > two.txt

		ENDSCRIPT two
	ENDBLOCK SCRIPTS
END METHOD Two
BEGIN METHOD Three
	ID 3
	BLOCK DEPENDENCIES
	2 RECORDS
		METHOD 1 AS one
		METHOD 2 AS two
	ENDBLOCK DEPENDENCIES
	BLOCK PARAMETERS
	1 RECORDS
		c = LIST 11.2 (default) 15.8 
	ENDBLOCK PARAMETERS
	BLOCK SCRIPTS
	1 RECORDS
		SCRIPT three

			cat $one/one.txt $two/two.txt > three.txt
			echo $C >> three.txt

		ENDSCRIPT three
	ENDBLOCK SCRIPTS
END METHOD Three

